App\Core\Exception\BaseException

Creation of dynamic property App\Core\Routing\Route::$routeBinder is deprecated

/%7B%7BcustFont%7D%7D/vendor/sprnva/framework/src/Blast/assets/css/bootstrap.min.css
Sprnva Blast : Stack Trace
Sprnva v1.4.25 (PHP v8.2.18)

/home2/bacolodf/public_html/schednotes/vendor/sprnva/framework/src/Routing/Route.php:31

17
		'GET' => [],
18
		'POST' => [],
19
		'DELETE' => [],
20
		'PUT' => [],
21
		'PATCH' => [],
22
		'OPTIONS' => []
23
	];
24

25
	protected static $currentGroupPrefix = '';
26
	protected static $currentGroupController = '';
27
	protected static $currentGroupMiddleware = [];
28

29
	public function __construct()
30
	{
31
		$this->routeBinder = new RouteBinding(static::$routes);
32
	}
33

34
	/**
35
	 * Register a method specified.
36
	 *
37
	 * @param string $uri
38
	 * @param mixed $callback
39
	 */
40
	public static function addRoute($method, $uri, $callback)
41
	{
42
		$groupPrefix = static::$currentGroupPrefix;
43
		$groupController = static::$currentGroupController;
44

45
		if ($groupPrefix == "") {
46
			$_uri = $uri;